home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc™ Source Code / Utilities / ErrUtils.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-28  |  642 b   |  36 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ErrUtils.cpp
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Owned by:    Nick Pilch
  7.  
  8.     Copyright:    © 1996 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <1>    .06.1996    NP        first checked in
  13.  
  14.     To Do:
  15. */
  16.  
  17. #ifndef __DIALOGS__
  18. #include <Dialogs.h>
  19. #endif
  20.  
  21. #ifndef _ERRUTILS_
  22. #include "ErrUtils.h"
  23. #endif
  24.  
  25. //------------------------------------------------------------------------------
  26. //  ReportErrorSimple
  27. //------------------------------------------------------------------------------
  28.  
  29. void ReportErrorSimple(StringPtr errorString)
  30. {
  31.     ParamText(errorString, "\p", "\p", "\p");
  32.     NoteAlert(2001, NULL);
  33. }
  34.  
  35.  
  36.